home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Presentations / Presentations ’97 / Sessions ’97 / Multiplatform Code⁄Data Sharing / HelloBothWorlds / Libraries / resfile.cpp < prev    next >
Encoding:
Text File  |  1997-06-26  |  350 b   |  17 lines  |  [TEXT/CWIE]

  1.  
  2. // mail <chelly@eden.com> or surf http://www.eden.com/~chelly for feedback
  3. // free source code - do whatever you like with it
  4.  
  5. // common interface base class for resource access classes
  6. // nothing special in the implementation here
  7.  
  8. #include "resfile.h"
  9.  
  10. resfile::~resfile() { }
  11.  
  12. void resfile::release_resource( void* p )
  13. {
  14.     delete [] (char*) p;
  15. }
  16.  
  17.